home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / knowhow4 / border.h < prev    next >
C/C++ Source or Header  |  1994-10-10  |  590b  |  26 lines

  1. /*  BORDER.H   Border is the Frame around future "window" with Header
  2.     in the top of it. Always in "text" coordinates
  3. */
  4.  
  5. #ifndef __BORDER_H_
  6. #define __BORDER_H_
  7.  
  8. #include "header.h"
  9. #include "frame.h"
  10. #include "output.h"
  11.  
  12. class Border : public Frame, public Header
  13.     {
  14.     public:
  15.     Border(rect coordinates, char* h, BORDERS b_type = STANDART_BORDER,
  16.                BORDERS hdr_b_type = STANDART_BORDER, int s = 3, int pat = 0);
  17.  
  18.     void  show();
  19.     void hilite();
  20.     void unhilite();
  21.     void set_header(char* h);
  22.     void set_type(BORDERS type);
  23.     };
  24.  
  25. #endif __BORDER_H_
  26.